home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / grafik / 3d & render tools / irit / man / man6 / logfile.6 < prev    next >
Encoding:
Text File  |  1996-07-16  |  729 b   |  29 lines

  1. .TH LOGFILE
  2.  6 "IRIT Version 6.0" 
  3. .SH NAME
  4. LOGFILE
  5.  
  6.  
  7.  
  8.  LOGFILE( NumericType Set )
  9.  
  10.  or
  11.  
  12.  LOGFILE( StringType FileName )
  13.  
  14. If Set is non zero (see TRUE/FALSE and ON/OFF), then everything
  15. printed in the input window, will go to the log file specified in the
  16. IRIT.CFG configuration file. This file will be created the first time
  17. logfile is turned ON. If a string FileName is provided, it will
  18. be used as a log file name from now on. It also closes the current log
  19. file. A "LOGFILE( on );" must be issued after a log file name change.
  20.  
  21. Example:
  22.  
  23.     LOGFILE( "Data1" );    
  24.     LOGFILE( on );    
  25.     printf( "Resolution = %lf\n", list( resolution ) );
  26.     LOGFILE( off );    
  27.  
  28. to print the current resolution level into file Data1.
  29.